home *** CD-ROM | disk | FTP | other *** search
/ PC World Interactive 7 / PC World Interactive 7.iso / program / ctutord.EXE / ENUM.C < prev    next >
C/C++ Source or Header  |  1993-07-14  |  491b  |  30 lines

  1. enum state { red, yellow, green };
  2. main()
  3. {
  4.     int  car;
  5.     enum state light;
  6.  
  7.     light = green ;
  8.  
  9.     for(car=1; car < 100; car++){
  10.  
  11.             if( !(car%10) )
  12.                 light = red;
  13.             else if( !(car%12) )
  14.                 light = yellow;
  15.             else if( !(car%15) )
  16.                 light = green;
  17.  
  18.             /* here we go... */
  19.  
  20.             if( light == green )
  21.                 printf("VARROOOM!\n");
  22.             else if( light == yellow )
  23.                 printf("Caution!\n");
  24.             else if( light == red )
  25.                 printf("STOP!\n");
  26.     }
  27.  
  28.     printf("Out of Gas!\n");
  29. }
  30.